-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.c
39 lines (31 loc) · 899 Bytes
/
Solution.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include <stdio.h>
#include <limits.h>
int main() {
int n, i, largest, secondLargest;
printf("Enter the number of elements: ");
scanf("%d", &n);
if (n < 2) {
printf("Error: Array must have at least two elements.\n");
return 1;
}
int arr[n];
printf("Enter the elements of the array: ");
for (i = 0; i < n; i++) {
scanf("%d", &arr[i]);
}
largest = secondLargest = INT_MIN;
for (i = 0; i < n; i++) {
if (arr[i] > largest) {
secondLargest = largest;
largest = arr[i];
} else if (arr[i] > secondLargest && arr[i] != largest) {
secondLargest = arr[i];
}
}
if (secondLargest == INT_MIN) {
printf("There is no second largest element.\n");
} else {
printf("The second largest number is: %d\n", secondLargest);
}
return 0;
}